[id].vue 590 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <LayoutCommonSection>
  4. <UiFormEdition
  5. :model="AttendanceBookingReason"
  6. go-back-route="/parameters/attendances"
  7. >
  8. <template #default="{ entity }">
  9. <FormParameterAttendanceBookingReason
  10. v-if="entity !== null"
  11. :entity="entity"
  12. />
  13. </template>
  14. </UiFormEdition>
  15. </LayoutCommonSection>
  16. </div>
  17. </template>
  18. <script setup lang="ts">
  19. import AttendanceBookingReason from '~/models/Booking/AttendanceBookingReason'
  20. definePageMeta({
  21. name: 'attendanceBookingReason',
  22. })
  23. </script>